home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ AOL IM 2.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  43 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="\Internet\Instant Messaging\AOL IM"
  5. "NAME"="Maximum Number of Buddies"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.04"
  8. "TEXT 1"="Buddies:"
  9. "DESCRIPTION 1"="By default, AOL only lets add 160 buddies to your buddy list. If you want, you can increase or decrease this value."
  10. "DESCRIPTION 2"="To change the value, type a new numeric value in the box. By default it is 160, but it is acceptable to have values above or below 160."
  11. "DESCRIPTION 3"="NOTE: This does not work with the most recent versions of AOL IM 4.0"
  12. "DESCRIPTION 4"="AOL Instant Messenger can be obtained at http://www.aol.com/aim/."
  13. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Thanks to Andrew Bourdon [PowerPenguin@techie.com] and Axcel216 [axcel216@aol.com] for this tip!"
  17.  
  18. sPath="HKCU\Software\America Online\AOL Instant Messenger (TM)\CurrentVersion\Buddy\MaxBuddies"
  19.  
  20. Sub Plugin_Initialize 
  21.  if RegPathExists(sPath) then
  22.   s=RegReadValue(sPath)
  23.   Call SetUIElement(1,s)
  24.  else
  25.   Disable
  26.  end if
  27. End Sub
  28.  
  29. Sub Plugin_CheckData
  30. ' Added for X-Setup 5.x compatibility 
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  s=GetUIElement(1)
  35.  Call RegWriteValue(sPath,s,1)
  36. End Sub
  37.  
  38. Sub Plugin_Terminate 
  39. End Sub
  40.  
  41.  
  42.  
  43.